:root {
  --bg-dark: #320c47;
  --deep-purple: #5e24b8;
  --primary: #7a3ff0;
  --accent: #b889ff;
  --muted: #6a6072;
  --white: #ffffff;
  --glass: rgba(255,255,255,0.06);
  --card-shadow: 0 8px 30px rgba(16,8,40,0.6);
  --radius: 12px;
  --transition: 0.3s ease-in-out;
}

html, body {
  height: auto;
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, var(--deep-purple) 0%, var(--bg-dark) 100%);
  color: var(--white);
  padding: 8px;
}

nav {     
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom-style: solid;
}

nav .cta-twitch {
  display: flex;
  margin : 0 0 0 auto;
}

nav .logo {
  margin: 0 25px 5px 0;          
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition);
}
nav .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

nav a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
  transition: color var(--transition);
}
nav a:hover {
  color: var(--accent);
}
nav a.active {
  color: var(--accent);
  font-weight: 800;
}

.cta-twitch {
  background: #9146FF;
  color: white;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-twitch:hover {
  background: #7a3ff0;
}

.cta-twitch.live {
  border-color: red;
  position: relative;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.7);
}

.cta-twitch.live::after {
  content: "🔴 LIVE";
  position: absolute;
  top: -10px;
  right: -12px;
  background: red;
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 6px;
}





